Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CopyTo Method
See Also 
Leadtools Namespace > Generic RasterCollection Class : CopyTo Method



array
The one-dimensional array that is the destination of the elements copied from the current collection.
arrayIndex
The index at which copying begins.
Copies all the elements of the collection to the specified one-dimensional array starting at the specified destination array index.

Syntax

Visual Basic (Declaration) 
Public Overridable Sub CopyTo( _
   ByVal array() As T, _
   ByVal arrayIndex As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterCollection(Of T)
Dim array() As T
Dim arrayIndex As Integer
 
instance.CopyTo(array, arrayIndex)
C# 
public virtual void CopyTo( 
   T[] array,
   int arrayIndex
)
C++/CLI 
public:
virtual void CopyTo( 
   array<T>^ array,
   int arrayIndex
) 

Parameters

array
The one-dimensional array that is the destination of the elements copied from the current collection.
arrayIndex
The index at which copying begins.

Example

For an example, refer to Generic RasterCollection.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also